home *** CD-ROM | disk | FTP | other *** search
/ Sprite 1984 - 1993 / Sprite 1984 - 1993.iso / src / lib / c / bit / Bit_Expand.c < prev    next >
C/C++ Source or Header  |  1988-07-28  |  2KB  |  60 lines

  1. /* 
  2.  * Bit_Expand.c --
  3.  *
  4.  *    Source code for the Bit_Expand library procedure.
  5.  *
  6.  * Copyright 1988 Regents of the University of California
  7.  * Permission to use, copy, modify, and distribute this
  8.  * software and its documentation for any purpose and without
  9.  * fee is hereby granted, provided that the above copyright
  10.  * notice appear in all copies.  The University of California
  11.  * makes no representations about the suitability of this
  12.  * software for any purpose.  It is provided "as is" without
  13.  * express or implied warranty.
  14.  */
  15.  
  16. #ifndef lint
  17. static char rcsid[] = "$Header: Bit_Expand.c,v 1.2 88/07/25 10:33:50 ouster Exp $ SPRITE (Berkeley)";
  18. #endif not lint
  19.  
  20. #include <sprite.h>
  21. #include <bit.h>
  22. #include <stdlib.h>
  23. #include "bitInt.h"
  24.  
  25.  
  26. /*-
  27.  *-----------------------------------------------------------------------
  28.  *
  29.  * Bit_Expand --
  30.  *
  31.  *    Expand a dynamically-allocated bit array and return the new
  32.  *    location. If the new size of the array is not actually larger
  33.  *    than the old size, nothing is done. If oldBitPtr is NULL, this
  34.  *    is the equivalent of a Bit_Alloc call.
  35.  *
  36.  * Results:
  37.  *    The new location of the bit array.
  38.  *
  39.  * Side Effects:
  40.  *    The contents of the array may be moved and the old array freed.
  41.  *
  42.  *-----------------------------------------------------------------------
  43.  */
  44.  
  45. int *
  46. Bit_Expand(newNumBits, oldNumBits, oldBitPtr)
  47.     int        newNumBits;        /* The new number of bits in the array */
  48.     int        oldNumBits;        /* The number of bits in the oldBitPtr array */
  49.     int        *oldBitPtr;        /* The old array */
  50. {
  51.     int        *newBitPtr;
  52.     
  53.     Bit_Alloc(newNumBits, newBitPtr);
  54.     if (oldBitPtr != (int *)NULL) {
  55.     Bit_Copy(oldNumBits, oldBitPtr, newBitPtr);
  56.     Bit_Free(oldBitPtr);
  57.     }
  58.     return(newBitPtr);
  59. }
  60.